text/template/parse.Tree.vars (field)

11 uses

	text/template/parse (current package)
		parse.go#L31: 	vars       []string // variables defined at the moment.
		parse.go#L224: 	t.vars = []string{"$"}
		parse.go#L234: 	t.vars = nil
		parse.go#L460: 			t.vars = append(t.vars, v.val)
		parse.go#L464: 			t.vars = append(t.vars, v.val)
		parse.go#L513: 	defer t.popVars(len(t.vars))
		parse.go#L781: 	t.vars = t.vars[:n]
		parse.go#L788: 	for _, varName := range t.vars {